home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-10-09 | 283 b | 18 lines | [TEXT/tefi] |
- ; @(;)Copyright Apple Computer 1987 Version 1.1 of write.s on 87/05/03 225606 2.1
- ; nwritten = auxwrite(file, buffer, count);
- ; nwritten == -1 means error
-
- export auxwrite
- import cerror
-
- auxwrite proc
- move.l #4,d0
- trap #0
- bcc.b noerror
- jmp cerror
- noerror
- rts
- endp
-
- end
-